home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EnigmA Amiga Run 1997 April
/
EnigmA AMIGA RUN 17 (1997)(G.R. Edizioni)(IT)[!][issue 1997-04][EAR-CD].iso
/
EARCD
/
comm
/
thor
/
thor24arexx.lha
/
FSE
/
Quote.fse
< prev
next >
Wrap
Text File
|
1996-11-11
|
281b
|
21 lines
/* qoute.fse - qoutes all except empty lines */
options results
qoutechar = ">"
YPOS
currline = result
XPOS
currcolumn = result
MSGLENGTH
lastline = result
do i=1 to lastline
SETPOS 1 i
GETLINE
if(result ~= " ") then INSERTINPUT qoutechar
end
SETPOS currcolumn currline